home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DU Projects / DataCopy / Sources / DataCopy.hpp < prev    next >
Encoding:
Text File  |  1996-08-22  |  1.3 KB  |  75 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //    Release Version:    $ ODF 2 $
  3. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  4. //========================================================================================
  5.  
  6. #ifndef DATACOPY_HPP
  7. #define DATACOPY_HPP
  8.  
  9. #if !defined(FW_BUILD_MAC)
  10.  
  11. // ----- Foundation Includes -----
  12.  
  13. #include "FWCommon.h"
  14. #include "FWDebug.h"
  15. #include "FWExcLib.h"
  16. #include "FWCollec.h"
  17. #include "FWFoundU.h"
  18. #include "FWMemory.h"
  19. #include "FWNotifn.h"
  20. #include "FWRunTyp.h"
  21. #include "FWStream.h"
  22. #include "FWString.h"
  23.  
  24. // ----- OS Includes -----
  25.  
  26. #ifndef FWPOINT_H
  27. #include "FWPoint.h"
  28. #endif
  29.  
  30. #ifndef FWRECT_H
  31. #include "FWRect.h"
  32. #endif
  33.  
  34. #ifndef FWODGEOM_H
  35. #include "FWODGeom.h"
  36. #endif
  37.  
  38. // ----- OpenDoc Includes -----
  39.  
  40. #ifndef FWODTYPS_H
  41. #include "FWODTyps.h"
  42. #endif
  43.  
  44. #ifndef SOM_ODDragAndDrop_xh
  45. #include <DragDrp.xh>
  46. #endif
  47.  
  48. #ifndef SOM_Module_OpenDoc_StdProps_defined
  49. #include <StdProps.xh>
  50. #endif
  51.  
  52. #ifndef SOM_Module_OpenDoc_StdTypes_defined
  53. #include <StdTypes.xh>
  54. #endif
  55.  
  56. #ifndef SOM_ODStorageUnit_xh
  57. #include <StorageU.xh>
  58. #endif
  59.  
  60. #ifndef SOM_ODShape_xh
  61. #include <Shape.xh>
  62. #endif
  63.  
  64. #ifndef SOM_ODTransform_xh
  65. #include <Trnsform.xh>
  66. #endif
  67.  
  68. #ifndef SOM_ODSession_xh
  69. #include <ODSessn.xh>
  70. #endif
  71.  
  72. #endif
  73.  
  74. #endif // DATACOPY_HPP
  75.